home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / prokit34.zip / OPENSHAR.INT < prev    next >
Text File  |  1991-04-01  |  808b  |  32 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. (*
  14.  * OpenShare - TPAS 6.0 unit for shared text files (3-1-89)
  15.  *
  16.  * Use AssignText instead of Assign to create a text file
  17.  * with full DOS 3.x file sharing (as implemented for binary
  18.  * files by MDosIO)
  19.  *
  20.  *)
  21.  
  22. unit OpenShare;
  23.  
  24. interface
  25.  
  26.    Uses Dos,MdosIO;
  27.  
  28.    Procedure AssignText(var F:  Text; FileName:  dos_filename);
  29.       (* use instead of Assign() for shared text files *)
  30.  
  31. implementation
  32.